Skip to main content
GET
/
trade
/
ripio-wallet
/
transfer
Ripio Wallet - List Transfers
curl --request GET \
  --url https://api.ripio.com/trade/ripio-wallet/transfer \
  --header 'authorization: <authorization>' \
  --header 'signature: <signature>' \
  --header 'timestamp: <timestamp>'
{
  "data": {
    "transfers": [
      {
        "created_at": "2024-01-01T00:00:00.000Z",
        "status": "confirmed",
        "type": "deposit",
        "currency": "BTC",
        "amount": "9.005589",
        "id": "vx64qwe-qwe778qwe-4qwe1dasc-qwe4"
      }
    ],
    "pc": "2024-01-01T00:00:00.000Z",
    "nc": "2025-01-01T00:00:00.000Z"
  },
  "error_code": null,
  "message": null
}

Headers

authorization
string
required

The API key as a string.

signature
string
required

See the Generating Signature section for more details.

timestamp
number
required

A timestamp in milliseconds. See the Timestamp Security section for more details.

timstamp-tolerance
number

An additional, non-required parameter, that you can send to specify the number of milliseconds after the timestamp for the request to be valid. See the Timestamp Security section for more details.

Query Parameters

start_date
string
required

Initial datetime filter in ISO-8601 format

Example:

"2020-01-01T03:00:00.000Z"

end_date
string
required

Final datetime filter in ISO-8601 format

Example:

"2020-01-03T02:59:59.000Z"

page_size
number
required

Number of records per page

Example:

100

type
string

Transfer type

Example:

"deposit"

currency_code
string

Currency code (BTC, ETH, USDT, ...)

status
string

Transfer status filter: pending, completed, or failed

Example:

"pending"

c
string

Cursor from the previous response to fetch the next page. Omit this parameter for the first page.

Example:

"2024-01-01T00:00:00.000Z"

order_by
string

Order direction

Example:

"asc"

Response

200 - application/json

Ok

data
object
required
error_code
number
required
Example:

null

message
string
required
Example:

null